home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000274_news@watsun.cc.columbia.edu _Wed Feb 24 16:29:49 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA05390
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 24 Feb 1999 16:29:48 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA29341
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 24 Feb 1999 16:08:44 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Setserial High Speed Help
  11. Date: 24 Feb 1999 21:08:43 GMT
  12. Organization: Columbia University
  13. Message-ID: <7b1por$skq$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16. In article <7b1our$ekh$1@vixen.cso.uiuc.edu>,
  17. C Lance Moxley  <clm@uiuc.edu> wrote:
  18. : In comp.os.linux.hardware Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  19. : > I don't know about setserial or your serial card, but C-Kermit 7.0
  20. : > (currently in Beta test) supports high serial speeds in Linux in the normal
  21. : > POSIX way, i.e. without any of the hacks found in previous releases.
  22. : I'm actually using Kermit (C-Kermit 7.0.195 Beta.04, 30 Jan 1999, for Linux).
  23. : Here is what happens when I try to go to 230400bps:
  24. : (/home/clm/) C-Kermit>set speed 230400
  25. : ?SET SPEED fails, speed is 110
  26. : It says that it is compiled to go to 460800:
  27. : (/home/clm/) C-Kermit>set speed ? Transmission rate for /dev/cua2 in bits 
  28. : per second, one of the following:
  29. :  110     1200    150     19200   230400  300     460800  50      600     9600
  30. :  115200  134.5   1800    200     2400    38400   4800    57600   75
  31. : When I drop to 115200 it works fine.
  32. The problem there is that, although the API for setting the speed to 230400
  33. is legal, the driver for the particular device does not accept that speed,
  34. or it accepts it but misinterprets it; the failure message comes when, after
  35. attempting to set the speed as requested, it reads it back and the result
  36. does not match.
  37.  
  38. So...  Which kernel do you have?  Which distribution and version?  What kind
  39. of serial port is cua2?  Does its driver support speeds in excess of 115200?
  40. I suspect it doesn't (or if it does, that it does so through nonstandard APIs).
  41.  
  42. - Frank